/*reset*/
html,body, ul, ol, dl, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, button, textarea, p, blockquote, table, th, td, menu {
    margin: 0;
    padding: 0;
}
html,body{
    width: 100%;
    height: 100%;
}
ul, ol, menu ,li{
    list-style: none;
}

img {
    border: none;
}

button{
    outline: none;
    cursor: pointer;
    border: none;
}

#tme_login_container{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    display: none;
}

.tme_mask{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}
.tme_content{
    width: 540px;
    height: 400px;
    font-size: 16px;
    padding: 16px;
    background-color: #fff;
    border-radius: 4px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: 1001;
    box-sizing: border-box;
}
.tme_close_img{
    margin-bottom: 16px;
    cursor: pointer;
}
.tme_wechat_span.active, .tme_phone_span.active{
  color: #353535;
}
.tme_wechat_span i{
   background: url("../img/icon_weixin_unselected.svg");
   display: inline-block;
   width: 20px;
   height: 20px;
   position: relative;
   top: 4px;
   right: 6px;
   background-size: 100%;
}
.tme_wechat_span.active i{
   background: url("../img/icon_weixin_selected.svg");
   background-size: 100%;
}
.tme_phone_span i{
    background: url("../img/icon_phone_unselected.svg");
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    top: 4px;
    right: 6px;
    background-size: 100%;
}
.tme_phone_span.active i{
    background: url("../img/icon_phone_selected.svg");
    background-size: 100%;
}
.tme_phone_login_box{
    display: none;
    width: 300px;
    margin: 0 auto;
}

.tme_wechat_login_box{
    position: relative;
}

#tmeQrcodeShadow{
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: hsla(0,0%,100%,.9);
    text-align: center;
    top: 0;
    display: none;
    padding-top: 70px;
    box-sizing: border-box;
}

#tmeQrcodeShadow p{
    font-size: 12px;
    color: #353535;
    margin-bottom: 20px;
}

#tmeQrcodeShadow button{
    width: 60px;
    height: 25px;
    background-color: #2a75ed;
    color: #fff;
    font-size: 14px;
}

/*tme_form*/
.tme_form_select{
    position: relative;
}
#tme_select{
    cursor: pointer;
}
.tme_select_ul{
    display: none;
    position: absolute;
    width: 301px;
    max-height: 200px;
    overflow-y: auto;
    left: 0;
    top: 45px;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
    box-sizing: border-box;
    z-index: 1002;
    padding: 6px 0;
}
.tme_slide{
    position: absolute;
    right: 10px;
    top: 13px;
    cursor: pointer;
}

/* scroll */
.tme_select_ul::-webkit-scrollbar {
     /*滚动条整体样式*/
     width: 5px;
     /*高宽分别对应横竖滚动条的尺寸*/
     height: 5px;
 }

.tme_select_ul::-webkit-scrollbar-thumb {
     /*滚动条里面小方块*/
     border-radius: 2px;
     -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
     background: #cccdce;
 }

.tme_select_ul::-webkit-scrollbar-thumb:hover {
     /*滚动条里面小方块*/
     border-radius: 2px;
     -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
     background: #9696a0;
 }

.tme_select_ul::-webkit-scrollbar-track:hover {
     /*滚动条里面轨道*/
     -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
     border-radius: 0px;
     background: #EDEDED;
 }

.tme_select_ul li{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
    padding: 0 20px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #606266;
    height: 34px;
    line-height: 34px;
    box-sizing: border-box;
    cursor: pointer;
}
.tme_select_ul li:hover{
    background-color: #f5f7fa;
}

#tme_code_img{
   cursor: pointer;
}

#tme_getcode{
    width: 73px;
    height: 40px;
    margin-left: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #c0c4cc;
}
#tme_getcode.active{
    border: 1px solid #2a75ed;
    background-color: #fff;
    color: #2a75ed;
}

#tme_login_submit{
    width: 300px;
    height: 36px;
    background: #2a75ed;
    border: 1px solid #2a75ed;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

/*tme_input*/
.tme_input{
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    outline: none;
    padding: 0 15px;
    transition: border-color .2s cubic-bezier(.645,.045,.355,1);
}
.tme_input:focus{
    border-color: #409eff;
}

.tme_input98{
    width: 98px;
}

.tme_input192{
    width: 192px;
}

.tme_input194{
    width: 194px;
}

.tme_input218{
    width: 218px;
}

.tme_input300{
    width: 300px;
}

.tme_input::-webkit-input-placeholder{
    color: #c0c4cc;
}
.tme_input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color: #c0c4cc;
}
.tme_input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color: #c0c4cc;
}
.tme_input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
    color: #c0c4cc;
}

/*font*/
.tme_font12{
   font-size: 12px;
}

/*color*/
.tme_color35{
  color: #353535;
}

/*margin*/
.tme_margin_bottom21{
    margin-bottom: 21px;
}

.tme_margin_bottom25{
    margin-bottom: 25px;
}

.tme_margin_bottom31{
    margin-bottom: 31px;
}

/*tme_tab_box*/
.tme_tab_box{
    margin-bottom:33px;
    color: #888;
}
.tme_tab_line{
    display: inline-block;
    width: 1px;
    height: 18px;
    line-height: 18px;
    background-color: #d8d8d8;
    margin: 5px 20px 0 20px;
}

/*cursor*/
.tme_cursor{
    cursor: pointer;
}

/*text-align*/
.tme_right{
  text-align: right;
}

/*flex*/
.tme_flexRowBox {
    display: flex;
    flex-direction: row;
}

.tme_flexRowJusCenterBox {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.tme_flexRowJusSpaBeBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.tme_flexRowJusSpaArouBox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.tme_flexRowAlignCenterBox{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.tme_flexRowAlignJusCenterBox{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.tme_flexColumnBox {
    display: flex;
    flex-direction: column;
}

.tme_flexColumnJusAlignCenterBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tme_flexColumnJusCenterBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tme_flexColumnAlignCenterBox {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*tool_tip*/
.tme_tooltip_img{
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}
.tme_tool_tip{
    display: none;
    position:absolute;
    z-index:99999;
    max-width:180px;
    padding:10px;
    word-wrap:break-word;
    top: 35px;
    right: -26px;
    font-size: 12px;
    background-color: #F3F8FF;
    border: 1px solid #B9D4FD;
    border-radius: 4px;
    line-height: 18px;
    color: #5C6066;
}
.tme_tool_tip:before{
    position:absolute;
    content:'';
    background-color:rgba(0,0,0,0);
    width:0;
    height:0;
    border-width:5px;
    border-style:solid;
}
.tme_tool_tip:after{
    position:absolute;
    content:'';
    background-color:rgba(0,0,0,0);
    width:0;
    height:0;
    border-width:5px;
    border-style:solid;
}
.tme_tool_tip_top:before{
    top:100%;
    left:50%;
    transform:translate(-50%,0);
    -ms-transform:translate(-50%,0);
    -webkit-transform:translate(-50%,0);
    border-color:rgba(0,0,0,.9) transparent transparent transparent;
}
.tme_tool_tip_right:before{
    top:50%;
    left:0;
    transform:translate(-100%,-50%);
    -ms-transform:translate(-100%,-50%);
    -webkit-transform:translate(-100%,-50%);
    border-color:transparent rgba(0,0,0,.9) transparent transparent;
}
.tme_tool_tip_bottom:before{
    top:0;
    left:80%;
    transform:translate(-80%,-100%);
    -ms-transform:translate(-80%,-100%);
    -webkit-transform:translate(-80%,-100%);
    border-color:transparent transparent #B9D4FD transparent;
}
.tme_tool_tip_bottom:after{
    top:1px;
    left:80%;
    transform:translate(-80%,-100%);
    -ms-transform:translate(-80%,-100%);
    -webkit-transform:translate(-80%,-100%);
    border-color:transparent transparent #F3F8FF transparent;
}
.tme_tool_tip_left:before{
    top:50%;
    left:100%;
    transform:translate(0,-50%);
    -ms-transform:translate(0,-50%);
    -webkit-transform:translate(0,-50%);
    border-color:transparent transparent transparent rgba(0,0,0,.9);
}
.marketing-info-prices_org {
    display:none!important;
}
